ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / ChartAxis<T> Class / Origin Property






In This Topic
    Origin Property (ChartAxis<T>)
    In This Topic
    Gets or sets the value at which the axis crosses perpendicular axis.
    Syntax
    'Declaration
     
    
    Public Property Origin As System.Nullable(Of Double)
    'Usage
     
    
    Dim instance As ChartAxis(Of T)
    Dim value As System.Nullable(Of Double)
     
    instance.Origin = value
     
    value = instance.Origin
    public System.Nullable<double> Origin {get; set;}
    public read-write property Origin: System.Nullable; 
    public function get,set Origin : System.Nullable
    public: __property System.Nullable<double> get_Origin();
    public: __property void set_Origin( 
       System.Nullable<double> value
    );
    public:
    property System.Nullable<double> Origin {
       System.Nullable<double> get();
       void set (    System.Nullable<double> value);
    }
    See Also